home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Workspace / Briefcase / Source / PageMargin.h < prev    next >
Text File  |  1992-03-17  |  557b  |  27 lines

  1. #import <appkit/PageLayout.h>
  2.  
  3. @interface PageMargin : PageLayout
  4. {
  5.     id         plpAccessory;        /* accessory view in the page layout panel */
  6.     id        leftMargin;
  7.     id        rightMargin;
  8.     id        topMargin;
  9.     id        bottomMargin;
  10. }
  11.  
  12. /* Methods overridden from superclass */
  13.  
  14. - getValues:(float *)lm right:(float *)rm top:(float *)tm bottom:(float *)bm;
  15. - setValues:(float)lm right:(float)rm top:(float)tm bottom:(float)bm;
  16.  
  17. - pickedUnits:sender;
  18. - readPrintInfo;
  19. - writePrintInfo;
  20. - setPlpAccessory:anObject;
  21. - setTopBotForm:anObject;
  22. - setSideForm:anObject;
  23.  
  24. @end
  25.  
  26.  
  27.